#include "room.h"

init() {
     ::init();
     add_action("look", "look");
     add_action("look", "l");
     add_action("look", "examine");
}

look(str) {
  if (!str) return 0;
  if (str == "at statue"||str=="at burried head" ||str=="at crown" ||
      str == "at burried statue" || str == "at head" || 
      str == "at large statue" || str == "at large head" ) {  
    write("It is too far away to see clearly, it has the color of worn\n"+
     "and weathered copper.\n");
    return 1;
  }
  if (str == "at drop" || str == "at shear drop" || str=="at cliff") {
     write("A straight drop about eighty feet to the rocks and water\n"+
     "below.\n");
     return 1;
  }
  return 0;
}


THREE_EXIT("room/eastroad4","north",
         "room/eastroad2","south",
         "room/sunalley1","west",
"East road",
"The East Road runs north-south parallel to the village shore. The\n"+
"shear drop is now merely inches from the east edge of the road.\n"+
"The sound of the surf is much louder here, off to the north, at\n"+
"the bottom of the cliff you see the crown wearing head of a large\n"+
"statue burried in the sandy beach that replaces the rocky shore.\n"+
"Eastroad continues to the north and south from here.\n"+
"The fine gravel is scattered upon the hardpacked surface where\n"+
"Sun alley branches to the west.\n",
1)

